home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / i_nint.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  121b  |  11 lines

  1. #include "f2c.h"
  2.  
  3. integer i_nint(x)
  4. real *x;
  5. {
  6. double floor();
  7.  
  8. return( (*x)>=0 ?
  9.     floor(*x + .5) : -floor(.5 - *x) );
  10. }
  11.